home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / TERM16._W_ < prev    next >
Text File  |  1997-05-22  |  946b  |  44 lines

  1. #
  2. # Watcom makefile for TERM [Win16]
  3. #
  4. # TO MAKE: wmake -f term._W_
  5. #
  6.  
  7. CCFLAGS = -c -oaxt -d2 -w4 -zW
  8.  
  9. OBJS = term.obj about.obj ansi.obj accept.obj config.obj line.obj menu.obj paint.obj sioerror.obj
  10.  
  11. term.exe: $(OBJS) term.res term.def wsc16.lib mio16.lib xydriv16.lib
  12.    wlink @term16.lnk
  13.    wrc term.res
  14.  
  15. term.res: $(OBJS) term.rc
  16.    wrc -r -bt=windows term.rc
  17.  
  18. about.obj: about.c about.h
  19.    wcl $(CCFLAGS)  about.c
  20.  
  21. accept.obj: accept.c accept.h
  22.    wcl $(CCFLAGS)  accept.c
  23.  
  24. ansi.obj: ansi.c ansi.h
  25.    wcl $(CCFLAGS) ansi.c
  26.  
  27. config.obj: config.c config.h wsc.h
  28.     wcl $(CCFLAGS)  config.c
  29.  
  30. line.obj: line.c line.h wsc.h
  31.     wcl $(CCFLAGS)  line.c
  32.  
  33. menu.obj: menu.c menu.h wsc.h
  34.     wcl $(CCFLAGS)  menu.c
  35.  
  36. paint.obj: paint.c paint.h wsc.h
  37.     wcl $(CCFLAGS)  paint.c
  38.  
  39. term.obj: term.c term.h wsc.h
  40.    wcl $(CCFLAGS)  term.c
  41.  
  42. sioerror.obj: sioerror.c sioerror.h wsc.h
  43.    wcl $(CCFLAGS)  sioerror.c
  44.